home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: String
- @Method: toUpperCase - returns a string converted to upper
- case characters.
- @Syntax: string.toUpperCase()
- @Summary: toUpperCase - returns a string converted to upper case
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("string.toUpperCase()", selection);
- editor.setActive("Insert string.toUpperCase");
- }
- }
-
- !!/Script
-